home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / CHARCLAS.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  2KB  |  66 lines

  1.                             /* Chapter 13 - Program 2 - CHARCLAS.C */
  2. #include "stdio.h"
  3. #include "ctype.h"       /* Note - your compiler may not need this */
  4.  
  5. void count_the_data(char line[]);
  6.  
  7. void main()
  8. {
  9. FILE *fp;
  10. char line[80], filename[24];
  11. char *c;
  12.  
  13.    printf("Enter filename -> ");
  14.    scanf("%s", filename);
  15.    fp = fopen(filename, "r");
  16.  
  17.    do {
  18.       c = fgets(line, 80, fp);   /* get a line of text */
  19.       if (c != NULL) {
  20.          count_the_data(line);
  21.       }
  22.    } while (c != NULL);
  23.  
  24.    fclose(fp);
  25. }
  26.  
  27. void count_the_data(char line[])
  28. {
  29. int whites, chars, digits;
  30. int index;
  31.  
  32.    whites = chars = digits = 0;
  33.  
  34.    for (index = 0 ; line[index] != 0 ; index++) {
  35.       if (isalpha(line[index]))   /* 1 if line[] is alphabetic  */
  36.           chars++;
  37.       if (isdigit(line[index]))   /* 1 if line[] is a digit     */
  38.           digits++;
  39.       if (isspace(line[index]))   /* 1 if line[] is blank, tab, */
  40.           whites++;               /*           or newline       */
  41.    }   /* end of counting loop */
  42.  
  43.    printf("%3d%3d%3d %s", whites, chars, digits, line);
  44. }
  45.  
  46.  
  47.  
  48. /* Result of execution (This is a portion of the output, but the
  49.           comments have been removed to allow this section to be
  50.           included as one large comment.  This output assumes that
  51.           CHARCLAS.C is selected as the input file.)
  52.  
  53.  37 23  3 
  54.   2 13  0 #include "stdio.h"
  55.  18 43  0 #include "ctype.h"
  56.   1  0  0 
  57.   3 24  0 void count_the_data(char line[]);
  58.   1  0  0
  59.   2  8  0 void main()
  60.   1  0  0 {
  61.   2  6  0 FILE *fp;
  62.   3 16  4 char line[80], filename[24];
  63.   2  5  0 char *c;
  64.      (This pattern continues for the rest of the file)
  65. */
  66.